www.gusucode.com > Piwik 网站流量统计系统 v2.9.1PHP源码程序 > Piwik 网站流量统计系统 v2.9.1/How to install Piwik.html/piwik/plugins/CoreHome/javascripts/notification_parser.js

    /**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

$(document).ready((function ($, require) {
    return function () {

        var UI = require('piwik/UI');

        var $notificationNodes = $('[data-role="notification"]');

        $notificationNodes.each(function (index, notificationNode) {
            $notificationNode = $(notificationNode);
            var attributes = $notificationNode.data();
            var message    = $notificationNode.html();

            if (message) {
                var notification   = new UI.Notification();
                attributes.animate = false;
                notification.show(message, attributes);
            }

            $notificationNodes.remove();
        });

    }

})(jQuery, require));